【例子介绍】C#编写的连连看程序(数据结构课程中作业)
用C#编写的连连看(数据结构课程用),本程序是数据结构课程中作业要求的。
【相关图片】
【源码结构】
文件清单
└── LLK
├── LLK
│ ├── bin
│ │ └── Debug
│ │ ├── LLK.exe
│ │ ├── LLK.pdb
│ │ ├── LLK.vshost.exe
│ │ └── picture
│ │ ├── 10.bmp
│ │ ├── 11.bmp
│ │ ├── 12.bmp
│ │ ├── 13.bmp
│ │ ├── 14.bmp
│ │ ├── 15.bmp
│ │ ├── 16.bmp
│ │ ├── 17.bmp
│ │ ├── 18.bmp
│ │ ├── 19.bmp
│ │ ├── 1.bmp
│ │ ├── 20.bmp
│ │ ├── 21.bmp
│ │ ├── 2.bmp
│ │ ├── 3.bmp
│ │ ├── 4.bmp
│ │ ├── 5.bmp
│ │ ├── 6.bmp
│ │ ├── 7.bmp
│ │ ├── 8.bmp
│ │ ├── 9.bmp
│ │ ├── picture.bmp
│ │ └── tile.bmp
│ ├── CLLK.cs
│ ├── CQueue.cs
│ ├── Form1.cs
│ ├── Form1.Designer.cs
│ ├── Form1.resx
│ ├── LLK.csproj
│ ├── obj
│ │ ├── Debug
│ │ │ ├── LLK.csproj.GenerateResource.Cache
│ │ │ ├── LLK.exe
│ │ │ ├── LLK.Form1.resources
│ │ │ ├── LLK.pdb
│ │ │ ├── LLK.Properties.Resources.resources
│ │ │ └── TempPE
│ │ └── LLK.csproj.FileList.txt
│ ├── Program.cs
│ └── Properties
│ ├── AssemblyInfo.cs
│ ├── Resources.Designer.cs
│ ├── Resources.resx
│ ├── Settings.Designer.cs
│ └── Settings.settings
├── LLK.sln
└── LLK.suo
9 directories, 46 files
评论